12345678910111213 |
- "use client";
- import { useParams } from "next/navigation";
- import { FC, PropsWithChildren } from "react";
- interface Props {}
- const GameListFlag: FC<PropsWithChildren<Props>> = (props) => {
- const params = useParams();
- console.log(`🎯🎯🎯🎯🎯-> in page.tsx on 10`, params);
- return <div>hello React</div>;
- };
- export default GameListFlag;
|